home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-09 | 1.9 KB | 44 lines |
- #
- # @(#) Imakefile 12.1 95/05/09 SCOINC
- #
- #*************************************************************************
- #* *
- #* Copyright (c) 1992-1993 Ronald Joe Record *
- #* *
- #* All rights reserved. No part of this program or publication may be *
- #* reproduced, transmitted, transcribed, stored in a retrieval system, *
- #* or translated into any language or computer language, in any form or *
- #* by any means, electronic, mechanical, magnetic, optical, chemical, *
- #* biological, or otherwise, without the prior written permission of: *
- #* *
- #* Ronald Joe Record (408) 458-3718 *
- #* 212 Owen St., Santa Cruz, California 95062 USA *
- #* *
- #*************************************************************************
-
- #
- # Imakefile for lyap, by Ron Record
- #
- DEPLIBS = $(DEPXLIB)
- MANDIR = /usr/man/man.CONTRIB
- LYAP_INST_DIR = $(DESTDIR)/usr/local/lib/lyap
- MANSUFFIX = CONTRIB
- # Uncomment the following line if your system doesn't support prototypes
- # PROTODEFINE = -D_NO_PROTO
- # -DMAPS includes code to support "Function forcing". See lyap.man (-F)
- MAPDEFINE = -DMAPS
- DEFINES = $(MAPDEFINE) $(PROTODEFINE)
- INCLUDES = -I. -I../lib
- LOCAL_LIBRARIES = ../lib/libXrr.a $(XLIB)
- SYS_LIBRARIES = -lm $(NAPLIB)
- SRCS = lyap.c
- OBJS = lyap.o
-
- ComplexProgramTarget(lyap)
-
- install:: install.man
- @if [ ! -d $(LYAP_INST_DIR) ]; then mkdir -p $(LYAP_INST_DIR); fi
- @cd ./params; set -x; for file in *; do \
- $(INSTALL) -c $(INSTDATFLAGS) $$file $(LYAP_INST_DIR); \
- done
-